1bashThis demonstrates pattern matching and substitution using sed with a custom delimiter.echo "The quick brown fox jumps over the lazy dog." | sed -n "s|the \(.*\) dog|something else|p"external toolssedpattern matching and substitution